@charset "utf-8";
/* CSS Document */

     /* 搜索结果弹窗样式 */
        .search-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 9999;
            justify-content: center;
            align-items: flex-start;
            padding-top: 80px;
        }
        .search-result-box {
            width: 80%;
            max-width: 800px;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            max-height: 80vh;
            overflow-y: auto;
        }
        .search-close {
            float: right;
            font-size: 24px;
            cursor: pointer;
            color: #666;
        }
        .search-result-title {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        .search-result-item {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .search-result-item a {
            color: #0066cc;
            text-decoration: none;
            font-weight: bold;
        }
        .search-result-item a:hover {
            text-decoration: underline;
        }
        .search-result-date {
            color: #999;
            font-size: 12px;
            margin-top: 5px;
        }
        .search-no-result {
            color: #666;
            text-align: center;
            padding: 20px;
        }